home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib9 / v_11_07 / 1107103a < prev    next >
Encoding:
Text File  |  1995-11-01  |  302 b   |  21 lines

  1. // wc.cpp: Display word count
  2. #include <iostream.h>
  3. #include <stddef.h>
  4.  
  5. main()
  6. {
  7.     const size_t BUFSIZ = 128;
  8.     char s[BUFSIZ];
  9.     size_t wc = 0;
  10.     
  11.     while (cin >> s)
  12.         ++wc;
  13.  
  14.     cout << wc << '\n';
  15.     return 0;
  16. }
  17.  
  18. // Output from the command "wc < wc.cpp"
  19. // 35
  20.  
  21.